home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 1996 April / Software of the Month Club 1996 April.iso / pc / os2 / htmlchk / mac / hcnline.mac < prev    next >
Encoding:
Text File  |  1996-02-21  |  1.4 KB  |  29 lines

  1. /*---------------------------------------------------------------------------*/
  2. /*                                                                           */
  3. /*  hcnLine - This REXX Macro is called when the report sends out a LINE     */
  4. /*           Item,  This is called for ALL types of ITEMS                    */
  5. /*                                                                           */
  6. /*  Valid Variables are:                                                     */
  7. /*      hcDeep          hclDoc          hclPhysical     hclFileSize          */
  8. /*      hclHTMLTag      hclFileType     hclMatched      hclLocalFound        */
  9. /*      hclServerRoot   hclOffSite      hclParent       hclAccessCount       */
  10. /*      hcpDoc          hcpPhysical     hcpFileSize     hcpHTMLTag           */
  11. /*      hcpFileType     hcpMatched      hcpLocalFound   hcpServerRoot        */
  12. /*      hcpOffSite      hcpAccessCount                                       */
  13. /*                                                                           */
  14. /*---------------------------------------------------------------------------*/
  15.  
  16.   IF (hclLocalFound == 'No') THEN
  17.     DO
  18.  
  19.     Call RxhcLineOut 'HTML ' || hcpDoc || ' (' || hcpPhysical || ') '
  20.  
  21.     Call RxhcLineOut '    Missing File: ' || hclDoc || ' (' || hclPhysical || ') '
  22.  
  23.     Call RxhcLineOut ' '
  24.  
  25.     END
  26.  
  27. RETURN
  28.  
  29.